home *** CD-ROM | disk | FTP | other *** search
/ Skunkware 5 / Skunkware 5.iso / src / X11 / tclMotif-1.4 / programs / prog24 < prev    next >
Encoding:
Text File  |  1995-06-29  |  467 b   |  19 lines

  1. # same test as prog23, using resource instead of callback info
  2. xtAppInitialize -class Program
  3.  
  4. xmList .list managed -items "red, green, blue" -itemCount 3
  5. .list setValues -selectionPolicy multiple_select
  6. .list multipleSelectionCallback put_selected
  7.  
  8. proc put_selected {} {
  9.  
  10.     .list getValues -selectedItemCount size
  11. puts stdout "Selected count: $size"
  12.     .list getValues -selectedItems selected
  13.     puts stdout "selected: $selected"
  14. }
  15.  
  16. . realizeWidget
  17.  
  18. . mainLoop
  19.